home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et3_0-a1.lha / et3 / src / GotoDialog.h < prev    next >
C/C++ Source or Header  |  1992-04-27  |  513b  |  32 lines

  1. #ifndef GotoDialog_First
  2. #ifdef __GNUG__
  3. //pragma once
  4. #pragma interface
  5. #endif
  6. #define GotoDialog_First
  7.  
  8. #include "GotoDialog_e.h"
  9. #include "Dialog.h"
  10.  
  11. class TextView;
  12. class IntField;
  13.  
  14. //---- GotoDialog ---------------------------------------------------------------
  15.  
  16. class GotoDialog : public Dialog {
  17. public:
  18.     MetaDef(GotoDialog);
  19.     GotoDialog();
  20.     void ShowGotoDialog(TextView*); 
  21.  
  22. protected:
  23.     VObject *DoMakeContent();
  24.     void DoSetDefaults();
  25.  
  26.     TextView *view;
  27.     IntField *line;
  28. };
  29.  
  30. #endif
  31.  
  32.